home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 22
/
AACD 22.iso
/
AACD
/
Sound
/
SongPlayer
/
arexx
/
Status.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
OS/2 REXX Batch file
|
1998-03-18
|
243 b
|
17 lines
/* Simple rexx test file for SongPlayer */
options results
options FailAt 100
address 'SONGPLAYER.1'
drop result
get_time
secs = result
get_selected
sel = result
get_state
sta = result
say 'time='secs' secs state='sta' selected='sel
exit